/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

#container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

.zero-group{
  position: absolute;
  top: 1%;
  left: 1%;
}

.zero-group .btn{
  width: 30px;
  height: 30px;
  margin-top: 10%;
  display: flex;
  border: 0px solid #F1F1F1;
  transition: all .3s ease;
}
.one-group{
    position: absolute;
    top: 1%;
    right: 1%;
}

.one-group .btn{
    width: 30px;
    height: 30px;
    display: flex;
    border: 0px solid #F1F1F1;
    transition: all .3s ease;
}


.two-group{
    position: absolute;
    bottom: 1%;
    right:  1%;
    display: flex;
    flex-direction: row;

}

.two-group .btn{
    min-width: 35px;
    min-height: 35px;
    margin: auto;
    display: flex;
    transition: all .3s ease;
    border: 0px solid #F1F1F1;
}
@media only screen and (max-device-width:480px) {
  .two-group .btn{
    min-width: 25px;
    min-height: 25px;

}
.one-group .btn{
  width: 25px;
  height: 25px;

}
}

.zero-group .btn .icon, .one-group .btn .icon, .two-group .btn .icon{
    width: 25px;
    height: 25px;
    display: block;
    margin: auto;
    transition: all .3s ease;

}

.zero-group .btn:hover, .one-group .btn:hover, .two-group .btn:hover{
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    transform: scale(1.05);
    transition: all .3s ease;
    border-radius: 5px;
    border: 0px solid #D2D2D2;

}



/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }


.preloader-screen {
    position: fixed;
    z-index: 99999;
    display: block;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    color: #333333;
  }
  
  .section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .preloader-scooter-background {
    position: absolute;
    display: block;
    overflow: hidden;
    width: 30%;
    min-width: 200px;
    max-width: 320px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
  }
  .loading-text {
    display: block;
    margin-top: 0;
    margin-bottom: 12px;
    font-family: Barlowcondensed, sans-serif;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .l_bar {
    width:0%;
    margin: 1em auto;
    margin-left: 0;
    text-align: left;
    border: none;
    height: 5px;
    border-radius: 5px;
    background: #333333;
  }
  @media only screen and (max-device-width:480px) {
    .preloader-scooter-background {
      width: 60%;
      min-width: 0;
    }
    .l_bar {
      height: 4px;
    }
    .loading-text {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
  }
  }
  
/*  @media only screen and (max-device-width:480px) {
    .preloader-screen {
      position: fixed;
      z-index: 99999;
      display: block;
      width: 100%;
      height: 100%;
      background: rgb(255, 255, 255);
      color: #666;
    }
    
    .section {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .preloader-scooter-background {
      position: absolute;
        display: block;
        overflow: hidden;
        width: 80%;
        height: 100%;
        margin-right: auto;
        margin-left: auto;
        left: 0px;
        right: 0px;
        bottom: -200px;
        z-index: 999;
    }
    .loading-text {
      display: block;
      margin-top: 100%;
      margin-bottom: 12px;
      font-family: Barlowcondensed, sans-serif;
      color: #696969;
      font-size: 40px;
      font-weight: 700;
      text-align: center;
    }
    .l_bar {
      width:0%;
      margin:1em auto;
      border:none;
      height: 4px;
      background: #de3945;
    }
    .l_img{
      position: absolute;
      width: 100%;
      display: block;
    }
  }*/

/* Material control interface */
.material-control {
  position: absolute;
  top: 1%;
  left: 1%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.material-control label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.material-control input[type="number"] {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.material-control input[type="number"]:focus {
  outline: none;
  border-color: #4a90e2;
}

.material-control input[type="number"]::-webkit-inner-spin-button,
.material-control input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
  height: 20px;
}

.material-control input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 10px 0;
}

.material-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4a90e2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.material-control input[type="range"]::-webkit-slider-thumb:hover {
  background: #357abd;
  transform: scale(1.1);
}

.material-control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4a90e2;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.material-control input[type="range"]::-moz-range-thumb:hover {
  background: #357abd;
  transform: scale(1.1);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

.range-label {
  font-family: Arial, sans-serif;
}

.range-value {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4a90e2;
  margin-top: 6px;
}

/* Scrollbar styling for material-control */
.material-control::-webkit-scrollbar {
  width: 8px;
}

.material-control::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.material-control::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.material-control::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.button-group label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.material-btn {
  padding: 10px 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.material-btn:hover {
  background-color: #f5f5f5;
  border-color: #4a90e2;
  transform: translateY(-1px);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.material-btn:active {
  transform: translateY(0);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.material-btn.active {
  background-color: #4a90e2;
  color: #ffffff;
  border-color: #4a90e2;
  box-shadow: 0px 2px 8px rgba(74, 144, 226, 0.3);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.checkbox-group label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: #4a90e2;
}

.accessory-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4a90e2;
  flex-shrink: 0;
}

.checkbox-label span {
  user-select: none;
}

@media only screen and (max-device-width: 480px) {
  .material-control {
    padding: 10px 15px;
    min-width: 150px;
    max-height: 85vh;
  }
  
  .material-control label {
    font-size: 12px;
  }
  
  .material-control input[type="number"] {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .material-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .button-group label {
    font-size: 12px;
  }
  
  .checkbox-group label {
    font-size: 12px;
  }
  
  .checkbox-label {
    font-size: 12px;
  }
  
  .accessory-checkbox {
    width: 16px;
    height: 16px;
  }
  
  .range-labels {
    font-size: 10px;
  }
  
  .range-value {
    font-size: 12px;
  }
  
  .material-control input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }
  
  .material-control input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }
}
